home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / wayevnt.sql < prev    next >
Text File  |  2000-05-12  |  728b  |  21 lines

  1. /* RCSVER $Id: wayevnt.sql,v 1.1 1999-06-03 13:13:05-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        wayevnt.sql
  6. * Date:        05/24/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the wayevnt table. This table contains probed data
  9. *        from the WAYFARER_EVENT_RECORD.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE wayevnt
  13. (
  14.     det_seq_num    NUMBER(38)
  15.         CONSTRAINT ref_wayevent REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),
  17.     conv_date    DATE,
  18.     code        NUMBER(38),
  19.         CONSTRAINT pk_wayevnt PRIMARY KEY (det_seq_num)
  20. );
  21.